home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / ssexpert.zip / SSEXPERT.DLL / RCDATA / SSMSRC < prev    next >
Text File  |  1996-09-02  |  492b  |  37 lines

  1. unit Main;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ScrnSave;
  8.  
  9. type
  10.   TSaverForm = class(TSSBaseForm)
  11.     procedure FormCreate(Sender: TObject);
  12.   private
  13.     { Private declarations }%1%
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. var
  19.   SaverForm: TSaverForm;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. procedure TSaverForm.FormCreate(Sender: TObject);
  26. begin //
  27.   %2%
  28. end;
  29.  
  30. %3%
  31.  
  32. initialization
  33.   Randomize;
  34. end.
  35.  
  36.  
  37.